home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 July & August / PCWorld_2007-07-08_cd.bin / v cisle / dvdstyler / DVDStyler-1.5-win32u.exe / {app} / dvdauthor / README < prev    next >
Text File  |  2005-01-31  |  3KB  |  81 lines

  1. dvdauthor is a program that will generate a DVD movie from a valid
  2. mpeg2 stream that should play when you put it in a DVD player.
  3.  
  4. To start you need mpeg files that contain the necessary DVD VOB
  5. packets.  These can be generated by passing '-f 8' to mplex.  See the
  6. included utility makevob.
  7.  
  8. There are 3 steps to building the DVD directory structure on your HDD.
  9.  
  10. 1. Delete a previously authored dvd
  11.  
  12.     dvddirdel [-o dir]
  13.  
  14.     WARNING!  This will delete without discrimination the contents of
  15.     the directory that you specify!
  16.  
  17. 2. Create your titlesets
  18.  
  19.     dvdauthor [-o dir] [audio/video/subpicture options] [chapters]
  20.  
  21.     To create 1 chapter per mpeg, simply do
  22.  
  23.     dvdauthor [-o dir] [a/v/s options] chap1.mpg chap2.mpg chap3.mpg...
  24.  
  25.     To manually specify chapters, use the '--chapters' option
  26.  
  27.     dvdauthor [-o dir] [a/v/s options] -c chap1a.mpg chap1b.mpg -c chap2a.mpg chap2b.mpg ....
  28.  
  29.     To add chapters every fifteen minutes, do
  30.  
  31.     dvdauthor [-o dir] [a/v/s options] -c 0,15:00,30:00,45:00,1:00:00,1:15:00... longvideo.mpg
  32.  
  33.     Call dvdauthor for each titleset you want to create.  Note that
  34.     due to the DVD standard, all audio, video, and subpicture options
  35.     must be set once for the entire titleset; i.e. you cannot mix pal
  36.     and ntsc video in the same titleset.  For that you must generate
  37.     separate titlesets.
  38.  
  39.     Run dvdauthor -h to see the audio, video, and subpicture options.
  40.     Note that dvdauthor can autodetect most parameters except the
  41.     language.
  42.  
  43. 3. Create the table of contents
  44.  
  45.     dvdauthor -T [-o dir]
  46.  
  47. Viola!  You now have a DVD directory structure that will probably
  48. work!  You can now write this out to your DVD, mini-DVD (CD), or just
  49. play it from your HDD.  To generate the UDF image to burn to DVD, use
  50. mkisofs from cdrtools-1.11a27 or later.  Simply pass it the -dvd-video
  51. option.
  52.  
  53. BTW, if you have an old HDD that you use for generating dvd images,
  54. you can create /usr/local/etc/dvdauthor.conf or ~/.dvdauthorrc and add
  55. the line:
  56.  
  57.     WORKDIR=foo
  58.  
  59. Then you won't need to specify -o to dvddirgen or dvdauthor.
  60. Alternatively, you could just set
  61.  
  62.     WORKDIR=mydvd
  63.  
  64. to always have it create a DVD in the current working directory.
  65.  
  66.  
  67. links:
  68.  
  69. cdrtools: http://www.fokus.gmd.de/research/cc/glone/employees/joerg.schilling/private/cdrecord.html
  70.     includes a version of mkisofs that can create udf images, but it's in the alpha directory
  71. mjpegtools: http://mjpeg.sourceforge.net
  72.     includes mplex for building an mpeg2 system stream with hooks
  73.     for DVD navigation packets
  74. mpucoder's site on dvd specs: http://mpucoder.dynodns.net/dvd/index.html
  75.     details on the DVD format
  76. libdvdread: http://www.dtek.chalmers.se/groups/dvd/downloads.shtml
  77.     includes ifo_dump for disecting DVD's.  the library
  78.     also serves as the basis for vob_dump.
  79. libxml2: http://www.xmlsoft.org/
  80. ImageMagick: http://www.imagemagick.org/
  81.